Merged
Conversation
e2444d1 to
e4c50ab
Compare
LLFourn
commented
Jun 24, 2025
| let fs = FiatShamir::new(self.dleq.clone(), self.transcript.clone(), None); | ||
| let witness = secret_key; | ||
| let statement = (public_key, (h, gamma)); | ||
| let proof = fs.prove::<R>(&witness, &statement, None); |
Owner
Author
There was a problem hiding this comment.
I think we should allow the user to pass through an rng here.
nickfarrow
reviewed
Jul 23, 2025
| ) -> Option<VerifiedRandomOutput> { | ||
| let vrf = Rfc9381TaiVrf::<H>::default(); | ||
| let h = Point::hash_to_curve_rfc9381_tai::<H>(alpha, b""); | ||
| vrf.verify(public_key, h.normalize(), proof) |
Collaborator
There was a problem hiding this comment.
Adding .normalize() was the only change I had to make after git cherry-picking this commit
nickfarrow
approved these changes
Jul 23, 2025
nickfarrow
reviewed
Jul 25, 2025
Add VRF (Verifiable Random Function) implementation for secp256k1: - Full RFC 9381 compliant implementation with both TAI and RFC 9380 SSWU methods - Simple VRF implementation for non-spec-compliant use cases - no_std support with optional std feature - Serde/bincode serialization support - Comprehensive test coverage with proptests and test vectors - MSRV: 1.85.0 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds the
vrf_funcrate which implements VRF (Verifiable Random Function) for secp256k1.Includes:
Conversation History
The main implementation involved:
🤖 Generated with Claude Code